home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 2
/
Aminet AMIGA CDROM (1994)(Walnut Creek)[Feb 1994][W.O. 44790-1].iso
/
Aminet
/
mus
/
play
/
DeliTracker1_37.lha
/
DeliTracker
/
Rexx
/
dt_prefswin.rexx
< prev
next >
Wrap
OS/2 REXX Batch file
|
1993-05-07
|
296b
|
26 lines
/* DeliTracker - open/close PrefsWindow */
address 'rexx_DT'
options results
status G pwi
if result == "no" then do
openprefswin
end
else do
closeprefswin
end
status G pwi
if result == "no" then do
say "Setup Window is now closed..."
end
else do
say "Setup Window is now open..."
end